home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1989 / 03b / pmdev / pmaux next >
Text File  |  1989-01-14  |  1KB  |  45 lines

  1. # Make file for PMAUX, a simple debugging window for Presentation Manager
  2. #
  3. # Written by William S. Hall
  4. # 3665  Benton Street, #66
  5. # Santa Clara, CA 95051
  6. #
  7.  
  8. # no debug compile macro
  9. cp=cl -c -W3 -AM -G2sw -Os -Zpe -I$(ttydir)
  10.  
  11. # libraries
  12. LIBS=os2 mlibcep /NOD
  13.  
  14. # ttycls directory
  15. ttydir=\pwcommon\ttycls
  16.  
  17. #headers
  18. headers=pmaux.h $(ttydir)\ttycls.h
  19.  
  20. # To make program work with IBM's OS/2 (SDK 1.06).  Set to null for SDK 1.05
  21. ver=IBMVER
  22.  
  23. # inference rule for resources
  24. .rc.res :
  25.     rc -r $*.rc
  26.  
  27. # Dependencies
  28. pmaux.res : pmaux.rc pmaux.h
  29.  
  30. pmaux.obj : pmaux.c $(headers)
  31.     $(cp) -NT _PMAUXRS pmaux.c
  32.  
  33. pmauxfn.obj : pmauxfn.c $(headers)
  34.     $(cp) -NT _PMAUXRS pmauxfn.c
  35.  
  36. pmauxnt.obj : pmauxnt.c $(headers)
  37.     $(cp) -D$(ver) -NT _PMAUXNT pmauxnt.c
  38.  
  39. ttycls.obj : $(ttydir)\ttycls.c $(ttydir)\ttycls.h
  40.     $(cp) -NT _PMAUXRS $(ttydir)\ttycls.c
  41.  
  42. pmaux.exe : pmaux.def pmaux.res pmaux.obj pmauxnt.obj pmauxfn.obj ttycls.obj
  43.     link pmaux pmauxfn pmauxnt ttycls,/align:16,/map,$(LIBS),pmaux
  44.     rc pmaux.res
  45.